home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / macosx_SecUpd20031219.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  75 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5.  
  6. if ( ! defined_func("bn_random") ) exit(0);
  7. if(description)
  8. {
  9.  script_id(12516);
  10.  script_version ("$Revision: 1.2 $");
  11.  name["english"] = "Security Update 2003-12-19";
  12.  
  13.  script_name(english:name["english"]);
  14.  
  15.  desc["english"] = "
  16. The remote host is missing Security Update 2003-12-19.
  17.  
  18. This security update includes the following components :
  19.  AFP Server
  20.  cd9600.util
  21.  Directory Services
  22.  fetchmail
  23.  fs_usage
  24.  rsync
  25.  System Initialization
  26.  
  27. For MacOS X 10.3, it also includes :
  28.  ASN.1 Decoding for PKI
  29.  
  30. This update contains various fixes which may allow an attacker to execute
  31. arbitrary code on the remote host.
  32.  
  33. Solution : 
  34. http://www.apple.com/downloads/macosx/apple/securityupdate20031219jaguar.html
  35. http://www.apple.com/downloads/macosx/apple/securityupdate20031219panther.html
  36.                
  37. Risk factor : High";
  38.  
  39.  
  40.  script_description(english:desc["english"]);
  41.  
  42.  summary["english"] = "Check for Security Update 2003-12-19";
  43.  script_summary(english:summary["english"]);
  44.  
  45.  script_category(ACT_GATHER_INFO);
  46.  
  47.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  48.  family["english"] = "MacOS X Local Security Checks";
  49.  script_family(english:family["english"]);
  50.  
  51.  script_dependencies("ssh_get_info.nasl");
  52.  script_require_keys("Host/MacOSX/packages");
  53.  exit(0);
  54. }
  55.  
  56.  
  57. packages = get_kb_item("Host/MacOSX/packages");
  58. if ( ! packages ) exit(0);
  59.  
  60. uname = get_kb_item("Host/uname");
  61.  
  62. # Security Update 2004-05-03 actually includes this update for MacOS X 10.2.8 Client
  63. if ( egrep(pattern:"Darwin.* 6\.8\.", string:uname) )
  64. {
  65.  if ( egrep(pattern:"^SecUpd2004-05-03", string:packages) ) exit(0);
  66. }
  67.  
  68.  
  69.  
  70. # MacOS X 10.2.8 and 10.3.3 only
  71. if ( egrep(pattern:"Darwin.* (6\.8\.|7\.[12]\.)", string:uname) )
  72. {
  73.   if ( ! egrep(pattern:"^SecurityUpd2003-12-19", string:packages) ) security_hole(0);
  74. }
  75.